home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / os2 / rxasyn20.zip / RXSCRIPT.ZIP / RXSCRIPT.DEV < prev    next >
Text File  |  1994-05-27  |  6KB  |  97 lines

  1. ###############################################################################
  2. #                                                                             #
  3. #   MODULE         RxScript.Dev                                               #
  4. #                                                                             #
  5. #   DESCRIPTION    Default communications device definition file which        #
  6. #                  specifies values that are normally written to, or          #
  7. #                  expected to be read from the device.                       #
  8. #                                                                             #
  9. #   COPYRIGHT           Copyright (C) 1993 - Crucial Applications             #
  10. #                                 All rights reserved                         #
  11. #                                                                             #
  12. #                             Ian Timms - 20th March 1993                     #
  13. #                                                                             #
  14. #   NOTES          All lines begining with '#' are treated as comments.       #
  15. #                                                                             #
  16. #                  This file contains the definitions of strings for          #
  17. #                  various device settings. These items are loaded when       #
  18. #                  the RxScript program is started. All settings are          #
  19. #                  optional with defaults being provided by the RxScript      #
  20. #                  program where necessary.                                   #
  21. #                                                                             #
  22. #                  If the setting "tag" is specified without a value          #
  23. #                  then the variable related to that "tag" is set to an       #
  24. #                  empty string (ie.  null).  If neither the "tag" nor a      #
  25. #                  value is specified then the default value is assumed.      #
  26. #                                                                             #
  27. #                  The following are currently recognised:-                   #
  28. #                                                                             #
  29. #                      Tag                     Default                        #
  30. #                      ------------------      ---------------------------    #
  31. #                      Port:                   COM2                           #
  32. #                      PollTimeout:            2000                           #
  33. #                      BaudRate:               1200                           #
  34. #                      Parity:                 N                              #
  35. #                      DataBits:               8                              #
  36. #                      StopBits:               1                              #
  37. #                      WriteTimeout:           50                             #
  38. #                      ReadTimeout:            50                             #
  39. #                      DcbFlags1:              00001001                       #
  40. #                      DcbFlags2:              10100000                       #
  41. #                      DcbFlags3:              11010010                       #
  42. #                      ErrorChar:              00                             #
  43. #                      BreakChar:              00                             #
  44. #                      XonChar:                11                             #
  45. #                      XoffChar:               13                             #
  46. #                      EnhancedParms:          00000010                       #
  47. #                      ------------------      ---------------------------    #
  48. #                                                                             #
  49. #                  The caret (^) followed by any one letter is replaced       #
  50. #                  by the control sequence for that character.  Use two       #
  51. #                  carets if you actually need to pass a ^M style             #
  52. #                  sequence (eg.  ^^M).  A caret may be followed only         #
  53. #                  by a letter, another caret, or ([) for escape,             #
  54. #                  anything else is an error.                                 #
  55. #                                                                             #
  56. #   HISTORY                                                                   #
  57. #                                                                             #
  58. #     10-Jun-1993  Original release.                                          #
  59. #                                                                             #
  60. ###############################################################################
  61. #
  62. #                                      Port      COM1/COM2/COM3/COM4/pipename
  63. Port:           COM4
  64. #                                      Read polling timeout
  65. PollTimeout:    2000
  66. #                                      Baudrate  38400/19200/9600/4800 etc
  67. BaudRate:       19200
  68. #                                      Parity    N/O/E/M/S
  69. Parity:         N
  70. #                                      Databits  8/7/6/5
  71. DataBits:       8
  72. #                                      Stopbits  1/1.5/2
  73. StopBits:       1
  74. #                                      DCB write timeout in hundredths
  75. WriteTimeout:   50
  76. #                                      DCB read timeout in hundredths
  77. ReadTimeout:    50
  78. #                                      DCB flags entry 1
  79. DcbFlags1:      00001001
  80. #                                      DCB flags entry 2
  81. DcbFlags2:      10100000
  82. #                                      DCB flags entry 3
  83. DcbFlags3:      11010010
  84. #                                      DCB error replace character
  85. ErrorChar:      00
  86. #                                      DCB break replace character
  87. BreakChar:      00
  88. #                                      DCB XON character
  89. XonChar:        11
  90. #                                      DCB XOFF character
  91. XoffChar:       13
  92. #                                      Enhanced mode parameters
  93. EnhancedParms:  00000010
  94. #
  95. # End of communications device definition file.
  96. #
  97.